home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 38
/
Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso
/
-seriously_amiga-
/
programming
/
other
/
esa
/
examples
/
sss
/
do
next >
Wrap
AmigaDOS Script File
|
1999-01-25
|
526b
|
26 lines
.key list
;if you call this script with the parameter 'y', the source produced by
;ESA won't be deleted (comments will be included)
set ESA ESA
set ASM phx
set EXE sss
set OPT to
;ESA = ESA executable path
;ASM = your assembler's executable path
;EXE = name of the executable produced by the assembler
;OPT = option accepted by your assembler to specify EXE
failat 1
if "<list>" eq "y"
$ESA code/main.esa -c
$ASM code/main.s $OPT $EXE
else
$ESA code/main.esa
$ASM code/main.s $OPT $EXE
delete code/main.s
endif